home *** CD-ROM | disk | FTP | other *** search
/ Champak 143 / (Vol 143) Nov 15 2011.iso / Games / aqua_cubes.swf / scripts / frame_1 / DoAction_4.as < prev    next >
Text File  |  2011-11-15  |  404b  |  15 lines

  1. _root.onEnterFrame = function()
  2. {
  3.    if(_root.getBytesLoaded() >= _root.getBytesTotal())
  4.    {
  5.       _root.onEnterFrame = null;
  6.       gotoAndPlay(2);
  7.    }
  8.    else
  9.    {
  10.       _root.bytesloadedresult = Math.round(_root.getBytesLoaded() / _root.getBytesTotal() * 100);
  11.       _root.preloadergage.gotoAndStop(1 + Math.round(_root.getBytesLoaded() / _root.getBytesTotal() * 100));
  12.    }
  13. };
  14. stop();
  15.